home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 64
/
Volume 64 - JOGO DISK .iso
/
Games
/
We_Are_Human.swf
/
scripts
/
frame_4
/
DoAction.as
Wrap
Text File
|
2008-04-25
|
532b
|
25 lines
createEmptyMovieClip("stars",-100000);
i = 0;
while(i < 100)
{
stars.attachMovie("star","star" + i,1000 + i);
i++;
}
onEnterFrame = function()
{
i = 0;
while(i < 100)
{
_root.stars["star" + i]._x -= 1 / (16 / _root.stars["star" + i]._xscale * 4);
if(_root.p1.bod._currentframe == 2)
{
_root.stars["star" + i].play();
}
if(_root.stars["star" + i]._x < -10)
{
_root.stars["star" + i]._x = Stage.width + random(3);
}
i++;
}
};